home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / Centri / Centri.dir / 00091_Script_Drop44 < prev    next >
Text File  |  1999-02-25  |  544b  |  22 lines

  1.  
  2. on mouseup me
  3.   if inside(point(the loch of sprite 67, the locv of sprite 67), the rect of sprite 21) then
  4.     go to frame 15
  5.     
  6.     set the visibility of sprite 30 = false
  7.     
  8.   else
  9.     nothing
  10.   end if
  11. end
  12.  
  13. on mouseWithin me
  14.   if inside(point(the loch of sprite 38,the locv of sprite 38), the rect of sprite 67) then
  15.     set the visibility of sprite 21 = TRUE
  16.     set the loc of sprite 21 to point (the mouseh, the mousev)
  17.     updateStage
  18.   else
  19.     set the visibility of sprite 21 = FALSE
  20.   end if
  21.   updateStage
  22. end